home *** CD-ROM | disk | FTP | other *** search
/ Leonardo daVinci / LEODAVINCI.ISO / DATA / TLINE.Dxr / 00060_L2PrevInThreadButton sprite script.ls < prev    next >
Encoding:
Text File  |  1996-11-22  |  223 b   |  16 lines

  1. global gCurTLObj
  2.  
  3. on mouseDown
  4.   if objectp(gCurTLObj) then
  5.     registerMouseDown()
  6.     clickSound()
  7.   end if
  8. end
  9.  
  10. on mouseUp
  11.   if not validateMouseDown() then
  12.     exit
  13.   end if
  14.   L2MouseUpPrevInThreadButton(gCurTLObj)
  15. end
  16.